avatar 奔跑的Q丶

主题凑合用,样式即将改版...

去除 select 等标签默认浏览器样式

去除select等标签默认浏览器样式的方式:

1
2
3
4
5
6
7
8
9
10
select {
-webkit-appearance: none; /* chrome */
-moz-appearance: none; /* firefox */
appearance: none;
}

/* IE */
select::-ms-expand {
display: none;
}